* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit";
}
html {
  font-size: 62.5%;
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(212, 45%, 89%);
}
.container {
  width: 35rem;
  border-radius: 2rem;
  background-color: hsl(0, 0%, 100%);
}
.box {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 2rem;
}
.qr_code {
  border-radius: 2rem;
  width: 100%;
}

.title {
  font-size: 2.2rem;
  text-align: center;
  color: hsl(218, 44%, 22%);
}
.information {
  font-size: 1.5rem;
  text-align: center;
  color: hsl(220, 15%, 55%);
}
